├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── assets ├── contacts ├── graphoid copy.png ├── graphoid-in-action.png ├── graphoid.png ├── item.png └── person.png ├── docs ├── assets │ ├── css │ │ └── styles.css │ ├── js │ │ └── main.js │ ├── plugins │ │ ├── bootstrap │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .hound.yml │ │ │ ├── .travis.yml │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── elegant_font │ │ │ ├── Licensing │ │ │ │ ├── gpl_license.txt │ │ │ │ └── mit_license.txt │ │ │ ├── css │ │ │ │ ├── fonts │ │ │ │ │ ├── ElegantIcons.eot │ │ │ │ │ ├── ElegantIcons.svg │ │ │ │ │ ├── ElegantIcons.ttf │ │ │ │ │ └── ElegantIcons.woff │ │ │ │ ├── index.html │ │ │ │ ├── lte-ie7.js │ │ │ │ └── style.css │ │ │ └── images │ │ │ │ ├── PNG │ │ │ │ ├── arrow-up-down.png │ │ │ │ ├── arrow_back.png │ │ │ │ ├── arrow_carrot-2down.png │ │ │ │ ├── arrow_carrot-2down_alt2.png │ │ │ │ ├── arrow_carrot-2dwnn_alt.png │ │ │ │ ├── arrow_carrot-2left.png │ │ │ │ ├── arrow_carrot-2left_alt.png │ │ │ │ ├── arrow_carrot-2left_alt2.png │ │ │ │ ├── arrow_carrot-2right.png │ │ │ │ ├── arrow_carrot-2right_alt.png │ │ │ │ ├── arrow_carrot-2right_alt2.png │ │ │ │ ├── arrow_carrot-2up.png │ │ │ │ ├── arrow_carrot-2up_alt.png │ │ │ │ ├── arrow_carrot-2up_alt2.png │ │ │ │ ├── arrow_carrot-down.png │ │ │ │ ├── arrow_carrot-down_alt.png │ │ │ │ ├── arrow_carrot-down_alt2.png │ │ │ │ ├── arrow_carrot-left.png │ │ │ │ ├── arrow_carrot-left_alt.png │ │ │ │ ├── arrow_carrot-left_alt2.png │ │ │ │ ├── arrow_carrot-right.png │ │ │ │ ├── arrow_carrot-right_alt.png │ │ │ │ ├── arrow_carrot-right_alt2.png │ │ │ │ ├── arrow_carrot-up.png │ │ │ │ ├── arrow_carrot-up_alt2.png │ │ │ │ ├── arrow_carrot_up_alt.png │ │ │ │ ├── arrow_condense.png │ │ │ │ ├── arrow_condense_alt.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_down_alt.png │ │ │ │ ├── arrow_expand.png │ │ │ │ ├── arrow_expand_alt.png │ │ │ │ ├── arrow_expand_alt2.png │ │ │ │ ├── arrow_expand_alt3.png │ │ │ │ ├── arrow_left-down.png │ │ │ │ ├── arrow_left-down_alt.png │ │ │ │ ├── arrow_left-right.png │ │ │ │ ├── arrow_left-right_alt.png │ │ │ │ ├── arrow_left-up.png │ │ │ │ ├── arrow_left-up_alt.png │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_left_alt.png │ │ │ │ ├── arrow_move.png │ │ │ │ ├── arrow_right-down.png │ │ │ │ ├── arrow_right-down_alt.png │ │ │ │ ├── arrow_right-up.png │ │ │ │ ├── arrow_right-up_alt.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right_alt.png │ │ │ │ ├── arrow_triangle-down.png │ │ │ │ ├── arrow_triangle-down_alt.png │ │ │ │ ├── arrow_triangle-down_alt2.png │ │ │ │ ├── arrow_triangle-left.png │ │ │ │ ├── arrow_triangle-left_alt.png │ │ │ │ ├── arrow_triangle-left_alt2.png │ │ │ │ ├── arrow_triangle-right.png │ │ │ │ ├── arrow_triangle-right_alt.png │ │ │ │ ├── arrow_triangle-right_alt2.png │ │ │ │ ├── arrow_triangle-up.png │ │ │ │ ├── arrow_triangle-up_alt.png │ │ │ │ ├── arrow_triangle-up_alt2.png │ │ │ │ ├── arrow_up-down_alt.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── arrow_up_alt.png │ │ │ │ ├── icon_adjust-horiz.png │ │ │ │ ├── icon_adjust-vert.png │ │ │ │ ├── icon_archive.png │ │ │ │ ├── icon_archive_alt.png │ │ │ │ ├── icon_bag.png │ │ │ │ ├── icon_bag_alt.png │ │ │ │ ├── icon_balance.png │ │ │ │ ├── icon_blocked.png │ │ │ │ ├── icon_book.png │ │ │ │ ├── icon_book_alt.png │ │ │ │ ├── icon_box-checked.png │ │ │ │ ├── icon_box-empty.png │ │ │ │ ├── icon_box-selected.png │ │ │ │ ├── icon_briefcase.png │ │ │ │ ├── icon_briefcase_alt.png │ │ │ │ ├── icon_building.png │ │ │ │ ├── icon_building_alt.png │ │ │ │ ├── icon_calculator_alt.png │ │ │ │ ├── icon_calendar.png │ │ │ │ ├── icon_calulator.png │ │ │ │ ├── icon_camera.png │ │ │ │ ├── icon_camera_alt.png │ │ │ │ ├── icon_cart.png │ │ │ │ ├── icon_cart_alt.png │ │ │ │ ├── icon_chat.png │ │ │ │ ├── icon_chat_alt.png │ │ │ │ ├── icon_check.png │ │ │ │ ├── icon_check_alt.png │ │ │ │ ├── icon_check_alt2.png │ │ │ │ ├── icon_circle-empty.png │ │ │ │ ├── icon_circle-slelected.png │ │ │ │ ├── icon_clipboard.png │ │ │ │ ├── icon_clock.png │ │ │ │ ├── icon_clock_alt.png │ │ │ │ ├── icon_close.png │ │ │ │ ├── icon_close_alt.png │ │ │ │ ├── icon_close_alt2.png │ │ │ │ ├── icon_cloud-download.png │ │ │ │ ├── icon_cloud-download_alt.png │ │ │ │ ├── icon_cloud-upload.png │ │ │ │ ├── icon_cloud-upload_alt.png │ │ │ │ ├── icon_cloud.png │ │ │ │ ├── icon_cloud_alt.png │ │ │ │ ├── icon_cog.png │ │ │ │ ├── icon_cogs.png │ │ │ │ ├── icon_comment.png │ │ │ │ ├── icon_comment_alt.png │ │ │ │ ├── icon_compass.png │ │ │ │ ├── icon_compass_alt.png │ │ │ │ ├── icon_cone.png │ │ │ │ ├── icon_cone_alt.png │ │ │ │ ├── icon_contacts.png │ │ │ │ ├── icon_contacts_alt.png │ │ │ │ ├── icon_creditcard.png │ │ │ │ ├── icon_currency.png │ │ │ │ ├── icon_currency_alt.png │ │ │ │ ├── icon_cursor.png │ │ │ │ ├── icon_cursor_alt.png │ │ │ │ ├── icon_datareport.png │ │ │ │ ├── icon_datareport_alt.png │ │ │ │ ├── icon_desktop.png │ │ │ │ ├── icon_dislike.png │ │ │ │ ├── icon_dislike_alt.png │ │ │ │ ├── icon_document.png │ │ │ │ ├── icon_document_alt.png │ │ │ │ ├── icon_documents.png │ │ │ │ ├── icon_documents_alt.png │ │ │ │ ├── icon_download.png │ │ │ │ ├── icon_drawer.png │ │ │ │ ├── icon_drawer_alt.png │ │ │ │ ├── icon_drive.png │ │ │ │ ├── icon_drive_alt.png │ │ │ │ ├── icon_easel.png │ │ │ │ ├── icon_easel_alt.png │ │ │ │ ├── icon_error-circle.png │ │ │ │ ├── icon_error-circle_alt.png │ │ │ │ ├── icon_error-oct.png │ │ │ │ ├── icon_error-oct_alt.png │ │ │ │ ├── icon_error-triangle.png │ │ │ │ ├── icon_error-triangle_alt.png │ │ │ │ ├── icon_film.png │ │ │ │ ├── icon_floppy.png │ │ │ │ ├── icon_floppy_alt.png │ │ │ │ ├── icon_flowchart.png │ │ │ │ ├── icon_flowchart_alt.png │ │ │ │ ├── icon_folder-add.png │ │ │ │ ├── icon_folder-add_alt.png │ │ │ │ ├── icon_folder-alt.png │ │ │ │ ├── icon_folder-open.png │ │ │ │ ├── icon_folder-open_alt.png │ │ │ │ ├── icon_folder.png │ │ │ │ ├── icon_folder_download.png │ │ │ │ ├── icon_folder_upload.png │ │ │ │ ├── icon_genius.png │ │ │ │ ├── icon_gift.png │ │ │ │ ├── icon_gift_alt.png │ │ │ │ ├── icon_globe-2.png │ │ │ │ ├── icon_globe.png │ │ │ │ ├── icon_globe_alt.png │ │ │ │ ├── icon_grid-2x2.png │ │ │ │ ├── icon_grid-3x3.png │ │ │ │ ├── icon_group.png │ │ │ │ ├── icon_headphones.png │ │ │ │ ├── icon_heart.png │ │ │ │ ├── icon_heart_alt.png │ │ │ │ ├── icon_hourglass.png │ │ │ │ ├── icon_house.png │ │ │ │ ├── icon_house_alt.png │ │ │ │ ├── icon_id-2.png │ │ │ │ ├── icon_id-2_alt.png │ │ │ │ ├── icon_id.png │ │ │ │ ├── icon_id_alt.png │ │ │ │ ├── icon_image.png │ │ │ │ ├── icon_images.png │ │ │ │ ├── icon_info.png │ │ │ │ ├── icon_info_alt.png │ │ │ │ ├── icon_key.png │ │ │ │ ├── icon_key_alt.png │ │ │ │ ├── icon_laptop.png │ │ │ │ ├── icon_lifesaver.png │ │ │ │ ├── icon_lightbulb.png │ │ │ │ ├── icon_lightbulb_alt.png │ │ │ │ ├── icon_like.png │ │ │ │ ├── icon_like_alt.png │ │ │ │ ├── icon_link.png │ │ │ │ ├── icon_link_alt.png │ │ │ │ ├── icon_loading.png │ │ │ │ ├── icon_lock-open.png │ │ │ │ ├── icon_lock-open_alt.png │ │ │ │ ├── icon_lock.png │ │ │ │ ├── icon_lock_alt.png │ │ │ │ ├── icon_mail.png │ │ │ │ ├── icon_mail_alt.png │ │ │ │ ├── icon_map.png │ │ │ │ ├── icon_map_alt.png │ │ │ │ ├── icon_menu-circle_alt.png │ │ │ │ ├── icon_menu-circle_alt2.png │ │ │ │ ├── icon_menu-square_alt.png │ │ │ │ ├── icon_menu-square_alt2.png │ │ │ │ ├── icon_menu.png │ │ │ │ ├── icon_mic.png │ │ │ │ ├── icon_mic_alt.png │ │ │ │ ├── icon_minus-06.png │ │ │ │ ├── icon_minus-box.png │ │ │ │ ├── icon_minus_alt.png │ │ │ │ ├── icon_minus_alt2.png │ │ │ │ ├── icon_mobile.png │ │ │ │ ├── icon_mug.png │ │ │ │ ├── icon_mug_alt.png │ │ │ │ ├── icon_music.png │ │ │ │ ├── icon_ol.png │ │ │ │ ├── icon_paperclip.png │ │ │ │ ├── icon_pause.png │ │ │ │ ├── icon_pause_alt.png │ │ │ │ ├── icon_pause_alt2.png │ │ │ │ ├── icon_pencil-edit.png │ │ │ │ ├── icon_pencil-edit_alt.png │ │ │ │ ├── icon_pencil.png │ │ │ │ ├── icon_pencil_alt.png │ │ │ │ ├── icon_pens.png │ │ │ │ ├── icon_pens_alt.png │ │ │ │ ├── icon_percent.png │ │ │ │ ├── icon_percent_alt.png │ │ │ │ ├── icon_phone.png │ │ │ │ ├── icon_piechart.png │ │ │ │ ├── icon_pin.png │ │ │ │ ├── icon_pin_alt.png │ │ │ │ ├── icon_plus-box.png │ │ │ │ ├── icon_plus.png │ │ │ │ ├── icon_plus_alt.png │ │ │ │ ├── icon_plus_alt2.png │ │ │ │ ├── icon_printer-alt.png │ │ │ │ ├── icon_printer.png │ │ │ │ ├── icon_profile.png │ │ │ │ ├── icon_pushpin.png │ │ │ │ ├── icon_pushpin_alt.png │ │ │ │ ├── icon_puzzle.png │ │ │ │ ├── icon_puzzle_alt.png │ │ │ │ ├── icon_question.png │ │ │ │ ├── icon_question_alt.png │ │ │ │ ├── icon_question_alt2.png │ │ │ │ ├── icon_quotations.png │ │ │ │ ├── icon_quotations_alt.png │ │ │ │ ├── icon_quotations_alt2.png │ │ │ │ ├── icon_refresh.png │ │ │ │ ├── icon_ribbon.png │ │ │ │ ├── icon_ribbon_alt.png │ │ │ │ ├── icon_rook.png │ │ │ │ ├── icon_search.png │ │ │ │ ├── icon_search2.png │ │ │ │ ├── icon_search_alt.png │ │ │ │ ├── icon_shield.png │ │ │ │ ├── icon_shield_alt.png │ │ │ │ ├── icon_star-half.png │ │ │ │ ├── icon_star-half_alt.png │ │ │ │ ├── icon_star.png │ │ │ │ ├── icon_star_alt.png │ │ │ │ ├── icon_stop.png │ │ │ │ ├── icon_stop_alt.png │ │ │ │ ├── icon_stop_alt2.png │ │ │ │ ├── icon_table.png │ │ │ │ ├── icon_tablet.png │ │ │ │ ├── icon_tag.png │ │ │ │ ├── icon_tag_alt.png │ │ │ │ ├── icon_tags.png │ │ │ │ ├── icon_tags_alt.png │ │ │ │ ├── icon_target.png │ │ │ │ ├── icon_tool.png │ │ │ │ ├── icon_toolbox.png │ │ │ │ ├── icon_toolbox_alt.png │ │ │ │ ├── icon_tools.png │ │ │ │ ├── icon_trash.png │ │ │ │ ├── icon_trash_alt.png │ │ │ │ ├── icon_ul.png │ │ │ │ ├── icon_upload.png │ │ │ │ ├── icon_vol-mute.png │ │ │ │ ├── icon_vol-mute_alt.png │ │ │ │ ├── icon_volume-high.png │ │ │ │ ├── icon_volume-high_alt.png │ │ │ │ ├── icon_volume-low.png │ │ │ │ ├── icon_volume-low_alt.png │ │ │ │ ├── icon_wallet.png │ │ │ │ ├── icon_wallet_alt.png │ │ │ │ ├── icon_zoom-in.png │ │ │ │ ├── icon_zoom-in_alt.png │ │ │ │ ├── icon_zoom-out.png │ │ │ │ ├── icon_zoom-out_alt.png │ │ │ │ ├── social_blogger.png │ │ │ │ ├── social_blogger_circle.png │ │ │ │ ├── social_blogger_square.png │ │ │ │ ├── social_delicious.png │ │ │ │ ├── social_delicious_circle.png │ │ │ │ ├── social_delicious_square.png │ │ │ │ ├── social_deviantart.png │ │ │ │ ├── social_deviantart_circle.png │ │ │ │ ├── social_deviantart_square.png │ │ │ │ ├── social_dribbble.png │ │ │ │ ├── social_dribbble_circle.png │ │ │ │ ├── social_dribbble_square.png │ │ │ │ ├── social_facebook.png │ │ │ │ ├── social_facebook_circle.png │ │ │ │ ├── social_facebook_square.png │ │ │ │ ├── social_flickr.png │ │ │ │ ├── social_flickr_circle.png │ │ │ │ ├── social_flickr_square.png │ │ │ │ ├── social_googledrive.png │ │ │ │ ├── social_googledrive_alt2.png │ │ │ │ ├── social_googledrive_square.png │ │ │ │ ├── social_googleplus.png │ │ │ │ ├── social_googleplus_circle.png │ │ │ │ ├── social_googleplus_square.png │ │ │ │ ├── social_instagram.png │ │ │ │ ├── social_instagram_circle.png │ │ │ │ ├── social_instagram_square.png │ │ │ │ ├── social_linkedin.png │ │ │ │ ├── social_linkedin_circle.png │ │ │ │ ├── social_linkedin_square.png │ │ │ │ ├── social_myspace.png │ │ │ │ ├── social_myspace_circle.png │ │ │ │ ├── social_myspace_square.png │ │ │ │ ├── social_picassa.png │ │ │ │ ├── social_picassa_circle.png │ │ │ │ ├── social_picassa_square.png │ │ │ │ ├── social_pinterest.png │ │ │ │ ├── social_pinterest_circle.png │ │ │ │ ├── social_pinterest_square.png │ │ │ │ ├── social_rss.png │ │ │ │ ├── social_rss_circle.png │ │ │ │ ├── social_rss_square.png │ │ │ │ ├── social_share.png │ │ │ │ ├── social_share_circle.png │ │ │ │ ├── social_share_square.png │ │ │ │ ├── social_skype.png │ │ │ │ ├── social_skype_circle.png │ │ │ │ ├── social_skype_square.png │ │ │ │ ├── social_spotify.png │ │ │ │ ├── social_spotify_circle.png │ │ │ │ ├── social_spotify_square.png │ │ │ │ ├── social_stumbleupon_circle.png │ │ │ │ ├── social_stumbleupon_square.png │ │ │ │ ├── social_tumbleupon.png │ │ │ │ ├── social_tumblr.png │ │ │ │ ├── social_tumblr_circle.png │ │ │ │ ├── social_tumblr_square.png │ │ │ │ ├── social_twitter.png │ │ │ │ ├── social_twitter_circle.png │ │ │ │ ├── social_twitter_square.png │ │ │ │ ├── social_vimeo.png │ │ │ │ ├── social_vimeo_circle.png │ │ │ │ ├── social_vimeo_square.png │ │ │ │ ├── social_wordpress.png │ │ │ │ ├── social_wordpress_circle.png │ │ │ │ ├── social_wordpress_square.png │ │ │ │ ├── social_youtube.png │ │ │ │ ├── social_youtube_circle.png │ │ │ │ └── social_youtube_square.png │ │ │ │ └── SVG │ │ │ │ ├── arrow-up-down.svg │ │ │ │ ├── arrow_back.svg │ │ │ │ ├── arrow_carrot-2down.svg │ │ │ │ ├── arrow_carrot-2down_alt2.svg │ │ │ │ ├── arrow_carrot-2dwnn_alt.svg │ │ │ │ ├── arrow_carrot-2left.svg │ │ │ │ ├── arrow_carrot-2left_alt.svg │ │ │ │ ├── arrow_carrot-2left_alt2.svg │ │ │ │ ├── arrow_carrot-2right.svg │ │ │ │ ├── arrow_carrot-2right_alt.svg │ │ │ │ ├── arrow_carrot-2right_alt2.svg │ │ │ │ ├── arrow_carrot-2up.svg │ │ │ │ ├── arrow_carrot-2up_alt.svg │ │ │ │ ├── arrow_carrot-2up_alt2.svg │ │ │ │ ├── arrow_carrot-down.svg │ │ │ │ ├── arrow_carrot-down_alt.svg │ │ │ │ ├── arrow_carrot-down_alt2.svg │ │ │ │ ├── arrow_carrot-left.svg │ │ │ │ ├── arrow_carrot-left_alt.svg │ │ │ │ ├── arrow_carrot-left_alt2.svg │ │ │ │ ├── arrow_carrot-right.svg │ │ │ │ ├── arrow_carrot-right_alt.svg │ │ │ │ ├── arrow_carrot-right_alt2.svg │ │ │ │ ├── arrow_carrot-up.svg │ │ │ │ ├── arrow_carrot-up_alt2.svg │ │ │ │ ├── arrow_carrot_up_alt.svg │ │ │ │ ├── arrow_condense.svg │ │ │ │ ├── arrow_condense_alt.svg │ │ │ │ ├── arrow_down.svg │ │ │ │ ├── arrow_down_alt.svg │ │ │ │ ├── arrow_expand.svg │ │ │ │ ├── arrow_expand_alt.svg │ │ │ │ ├── arrow_expand_alt2.svg │ │ │ │ ├── arrow_expand_alt3.svg │ │ │ │ ├── arrow_left-down.svg │ │ │ │ ├── arrow_left-down_alt.svg │ │ │ │ ├── arrow_left-right.svg │ │ │ │ ├── arrow_left-right_alt.svg │ │ │ │ ├── arrow_left-up.svg │ │ │ │ ├── arrow_left-up_alt.svg │ │ │ │ ├── arrow_left.svg │ │ │ │ ├── arrow_left_alt.svg │ │ │ │ ├── arrow_move.svg │ │ │ │ ├── arrow_right-down.svg │ │ │ │ ├── arrow_right-down_alt.svg │ │ │ │ ├── arrow_right-up.svg │ │ │ │ ├── arrow_right-up_alt.svg │ │ │ │ ├── arrow_right.svg │ │ │ │ ├── arrow_right_alt.svg │ │ │ │ ├── arrow_triangle-down.svg │ │ │ │ ├── arrow_triangle-down_alt.svg │ │ │ │ ├── arrow_triangle-down_alt2.svg │ │ │ │ ├── arrow_triangle-left.svg │ │ │ │ ├── arrow_triangle-left_alt.svg │ │ │ │ ├── arrow_triangle-left_alt2.svg │ │ │ │ ├── arrow_triangle-right.svg │ │ │ │ ├── arrow_triangle-right_alt.svg │ │ │ │ ├── arrow_triangle-right_alt2.svg │ │ │ │ ├── arrow_triangle-up.svg │ │ │ │ ├── arrow_triangle-up_alt.svg │ │ │ │ ├── arrow_triangle-up_alt2.svg │ │ │ │ ├── arrow_up-down_alt.svg │ │ │ │ ├── arrow_up.svg │ │ │ │ ├── arrow_up_alt.svg │ │ │ │ ├── icon_adjust-horiz.svg │ │ │ │ ├── icon_adjust-vert.svg │ │ │ │ ├── icon_archive.svg │ │ │ │ ├── icon_archive_alt.svg │ │ │ │ ├── icon_bag.svg │ │ │ │ ├── icon_bag_alt.svg │ │ │ │ ├── icon_balance.svg │ │ │ │ ├── icon_blocked.svg │ │ │ │ ├── icon_book.svg │ │ │ │ ├── icon_book_alt.svg │ │ │ │ ├── icon_box-checked.svg │ │ │ │ ├── icon_box-empty.svg │ │ │ │ ├── icon_box-selected.svg │ │ │ │ ├── icon_briefcase.svg │ │ │ │ ├── icon_briefcase_alt.svg │ │ │ │ ├── icon_building.svg │ │ │ │ ├── icon_building_alt.svg │ │ │ │ ├── icon_calculator_alt.svg │ │ │ │ ├── icon_calendar.svg │ │ │ │ ├── icon_calulator.svg │ │ │ │ ├── icon_camera.svg │ │ │ │ ├── icon_camera_alt.svg │ │ │ │ ├── icon_cart.svg │ │ │ │ ├── icon_cart_alt.svg │ │ │ │ ├── icon_chat.svg │ │ │ │ ├── icon_chat_alt.svg │ │ │ │ ├── icon_check.svg │ │ │ │ ├── icon_check_alt.svg │ │ │ │ ├── icon_check_alt2.svg │ │ │ │ ├── icon_circle-empty.svg │ │ │ │ ├── icon_circle-slelected.svg │ │ │ │ ├── icon_clipboard.svg │ │ │ │ ├── icon_clock.svg │ │ │ │ ├── icon_clock_alt.svg │ │ │ │ ├── icon_close.svg │ │ │ │ ├── icon_close_alt.svg │ │ │ │ ├── icon_close_alt2.svg │ │ │ │ ├── icon_cloud-download.svg │ │ │ │ ├── icon_cloud-download_alt.svg │ │ │ │ ├── icon_cloud-upload.svg │ │ │ │ ├── icon_cloud-upload_alt.svg │ │ │ │ ├── icon_cloud.svg │ │ │ │ ├── icon_cloud_alt.svg │ │ │ │ ├── icon_cog.svg │ │ │ │ ├── icon_cogs.svg │ │ │ │ ├── icon_comment.svg │ │ │ │ ├── icon_comment_alt.svg │ │ │ │ ├── icon_compass.svg │ │ │ │ ├── icon_compass_alt.svg │ │ │ │ ├── icon_cone.svg │ │ │ │ ├── icon_cone_alt.svg │ │ │ │ ├── icon_contacts.svg │ │ │ │ ├── icon_contacts_alt.svg │ │ │ │ ├── icon_creditcard.svg │ │ │ │ ├── icon_currency.svg │ │ │ │ ├── icon_currency_alt.svg │ │ │ │ ├── icon_cursor.svg │ │ │ │ ├── icon_cursor_alt.svg │ │ │ │ ├── icon_datareport.svg │ │ │ │ ├── icon_datareport_alt.svg │ │ │ │ ├── icon_desktop.svg │ │ │ │ ├── icon_dislike.svg │ │ │ │ ├── icon_dislike_alt.svg │ │ │ │ ├── icon_document.svg │ │ │ │ ├── icon_document_alt.svg │ │ │ │ ├── icon_documents.svg │ │ │ │ ├── icon_documents_alt.svg │ │ │ │ ├── icon_download.svg │ │ │ │ ├── icon_drawer.svg │ │ │ │ ├── icon_drawer_alt.svg │ │ │ │ ├── icon_drive.svg │ │ │ │ ├── icon_drive_alt.svg │ │ │ │ ├── icon_easel.svg │ │ │ │ ├── icon_easel_alt.svg │ │ │ │ ├── icon_error-circle.svg │ │ │ │ ├── icon_error-circle_alt.svg │ │ │ │ ├── icon_error-oct.svg │ │ │ │ ├── icon_error-oct_alt.svg │ │ │ │ ├── icon_error-triangle.svg │ │ │ │ ├── icon_error-triangle_alt.svg │ │ │ │ ├── icon_film.svg │ │ │ │ ├── icon_floppy.svg │ │ │ │ ├── icon_floppy_alt.svg │ │ │ │ ├── icon_flowchart.svg │ │ │ │ ├── icon_flowchart_alt.svg │ │ │ │ ├── icon_folder-add.svg │ │ │ │ ├── icon_folder-add_alt.svg │ │ │ │ ├── icon_folder-alt.svg │ │ │ │ ├── icon_folder-open.svg │ │ │ │ ├── icon_folder-open_alt.svg │ │ │ │ ├── icon_folder.svg │ │ │ │ ├── icon_folder_download.svg │ │ │ │ ├── icon_folder_upload.svg │ │ │ │ ├── icon_genius.svg │ │ │ │ ├── icon_gift.svg │ │ │ │ ├── icon_gift_alt.svg │ │ │ │ ├── icon_globe-2.svg │ │ │ │ ├── icon_globe.svg │ │ │ │ ├── icon_globe_alt.svg │ │ │ │ ├── icon_grid-2x2.svg │ │ │ │ ├── icon_grid-3x3.svg │ │ │ │ ├── icon_group.svg │ │ │ │ ├── icon_headphones.svg │ │ │ │ ├── icon_heart.svg │ │ │ │ ├── icon_heart_alt.svg │ │ │ │ ├── icon_hourglass.svg │ │ │ │ ├── icon_house.svg │ │ │ │ ├── icon_house_alt.svg │ │ │ │ ├── icon_id-2.svg │ │ │ │ ├── icon_id-2_alt.svg │ │ │ │ ├── icon_id.svg │ │ │ │ ├── icon_id_alt.svg │ │ │ │ ├── icon_image.svg │ │ │ │ ├── icon_images.svg │ │ │ │ ├── icon_info.svg │ │ │ │ ├── icon_info_alt.svg │ │ │ │ ├── icon_key.svg │ │ │ │ ├── icon_key_alt.svg │ │ │ │ ├── icon_laptop.svg │ │ │ │ ├── icon_lifesaver.svg │ │ │ │ ├── icon_lightbulb.svg │ │ │ │ ├── icon_lightbulb_alt.svg │ │ │ │ ├── icon_like.svg │ │ │ │ ├── icon_like_alt.svg │ │ │ │ ├── icon_link.svg │ │ │ │ ├── icon_link_alt.svg │ │ │ │ ├── icon_loading.svg │ │ │ │ ├── icon_lock-open.svg │ │ │ │ ├── icon_lock-open_alt.svg │ │ │ │ ├── icon_lock.svg │ │ │ │ ├── icon_lock_alt.svg │ │ │ │ ├── icon_mail.svg │ │ │ │ ├── icon_mail_alt.svg │ │ │ │ ├── icon_map.svg │ │ │ │ ├── icon_map_alt.svg │ │ │ │ ├── icon_menu-circle_alt.svg │ │ │ │ ├── icon_menu-circle_alt2.svg │ │ │ │ ├── icon_menu-square_alt.svg │ │ │ │ ├── icon_menu-square_alt2.svg │ │ │ │ ├── icon_menu.svg │ │ │ │ ├── icon_mic.svg │ │ │ │ ├── icon_mic_alt.svg │ │ │ │ ├── icon_minus-06.svg │ │ │ │ ├── icon_minus-box.svg │ │ │ │ ├── icon_minus_alt.svg │ │ │ │ ├── icon_minus_alt2.svg │ │ │ │ ├── icon_mobile.svg │ │ │ │ ├── icon_mug.svg │ │ │ │ ├── icon_mug_alt.svg │ │ │ │ ├── icon_music.svg │ │ │ │ ├── icon_ol.svg │ │ │ │ ├── icon_paperclip.svg │ │ │ │ ├── icon_pause.svg │ │ │ │ ├── icon_pause_alt.svg │ │ │ │ ├── icon_pause_alt2.svg │ │ │ │ ├── icon_pencil-edit.svg │ │ │ │ ├── icon_pencil-edit_alt.svg │ │ │ │ ├── icon_pencil.svg │ │ │ │ ├── icon_pencil_alt.svg │ │ │ │ ├── icon_pens.svg │ │ │ │ ├── icon_pens_alt.svg │ │ │ │ ├── icon_percent.svg │ │ │ │ ├── icon_percent_alt.svg │ │ │ │ ├── icon_phone.svg │ │ │ │ ├── icon_piechart.svg │ │ │ │ ├── icon_pin.svg │ │ │ │ ├── icon_pin_alt.svg │ │ │ │ ├── icon_plus-box.svg │ │ │ │ ├── icon_plus.svg │ │ │ │ ├── icon_plus_alt.svg │ │ │ │ ├── icon_plus_alt2.svg │ │ │ │ ├── icon_printer-alt.svg │ │ │ │ ├── icon_printer.svg │ │ │ │ ├── icon_profile.svg │ │ │ │ ├── icon_pushpin.svg │ │ │ │ ├── icon_pushpin_alt.svg │ │ │ │ ├── icon_puzzle.svg │ │ │ │ ├── icon_puzzle_alt.svg │ │ │ │ ├── icon_question.svg │ │ │ │ ├── icon_question_alt.svg │ │ │ │ ├── icon_question_alt2.svg │ │ │ │ ├── icon_quotations.svg │ │ │ │ ├── icon_quotations_alt.svg │ │ │ │ ├── icon_quotations_alt2.svg │ │ │ │ ├── icon_refresh.svg │ │ │ │ ├── icon_ribbon.svg │ │ │ │ ├── icon_ribbon_alt.svg │ │ │ │ ├── icon_rook.svg │ │ │ │ ├── icon_search.svg │ │ │ │ ├── icon_search2.svg │ │ │ │ ├── icon_search_alt.svg │ │ │ │ ├── icon_shield.svg │ │ │ │ ├── icon_shield_alt.svg │ │ │ │ ├── icon_star-half.svg │ │ │ │ ├── icon_star-half_alt.svg │ │ │ │ ├── icon_star.svg │ │ │ │ ├── icon_star_alt.svg │ │ │ │ ├── icon_stop.svg │ │ │ │ ├── icon_stop_alt.svg │ │ │ │ ├── icon_stop_alt2.svg │ │ │ │ ├── icon_table.svg │ │ │ │ ├── icon_tablet.svg │ │ │ │ ├── icon_tag.svg │ │ │ │ ├── icon_tag_alt.svg │ │ │ │ ├── icon_tags.svg │ │ │ │ ├── icon_tags_alt.svg │ │ │ │ ├── icon_target.svg │ │ │ │ ├── icon_tool.svg │ │ │ │ ├── icon_toolbox.svg │ │ │ │ ├── icon_toolbox_alt.svg │ │ │ │ ├── icon_tools.svg │ │ │ │ ├── icon_trash.svg │ │ │ │ ├── icon_trash_alt.svg │ │ │ │ ├── icon_ul.svg │ │ │ │ ├── icon_upload.svg │ │ │ │ ├── icon_vol-mute.svg │ │ │ │ ├── icon_vol-mute_alt.svg │ │ │ │ ├── icon_volume-high.svg │ │ │ │ ├── icon_volume-high_alt.svg │ │ │ │ ├── icon_volume-low.svg │ │ │ │ ├── icon_volume-low_alt.svg │ │ │ │ ├── icon_wallet.svg │ │ │ │ ├── icon_wallet_alt.svg │ │ │ │ ├── icon_zoom-in.svg │ │ │ │ ├── icon_zoom-in_alt.svg │ │ │ │ ├── icon_zoom-out.svg │ │ │ │ ├── icon_zoom-out_alt.svg │ │ │ │ ├── social_blogger.svg │ │ │ │ ├── social_blogger_circle.svg │ │ │ │ ├── social_blogger_square.svg │ │ │ │ ├── social_delicious.svg │ │ │ │ ├── social_delicious_circle.svg │ │ │ │ ├── social_delicious_square.svg │ │ │ │ ├── social_deviantart.svg │ │ │ │ ├── social_deviantart_circle.svg │ │ │ │ ├── social_deviantart_square.svg │ │ │ │ ├── social_dribbble.svg │ │ │ │ ├── social_dribbble_circle.svg │ │ │ │ ├── social_dribbble_square.svg │ │ │ │ ├── social_facebook.svg │ │ │ │ ├── social_facebook_circle.svg │ │ │ │ ├── social_facebook_square.svg │ │ │ │ ├── social_flickr.svg │ │ │ │ ├── social_flickr_circle.svg │ │ │ │ ├── social_flickr_square.svg │ │ │ │ ├── social_googledrive.svg │ │ │ │ ├── social_googledrive_alt2.svg │ │ │ │ ├── social_googledrive_square.svg │ │ │ │ ├── social_googleplus.svg │ │ │ │ ├── social_googleplus_circle.svg │ │ │ │ ├── social_googleplus_square.svg │ │ │ │ ├── social_instagram.svg │ │ │ │ ├── social_instagram_circle.svg │ │ │ │ ├── social_instagram_square.svg │ │ │ │ ├── social_linkedin.svg │ │ │ │ ├── social_linkedin_circle.svg │ │ │ │ ├── social_linkedin_square.svg │ │ │ │ ├── social_myspace.svg │ │ │ │ ├── social_myspace_circle.svg │ │ │ │ ├── social_myspace_square.svg │ │ │ │ ├── social_picassa.svg │ │ │ │ ├── social_picassa_circle.svg │ │ │ │ ├── social_picassa_square.svg │ │ │ │ ├── social_pinterest.svg │ │ │ │ ├── social_pinterest_circle.svg │ │ │ │ ├── social_pinterest_square.svg │ │ │ │ ├── social_rss.svg │ │ │ │ ├── social_rss_circle.svg │ │ │ │ ├── social_rss_square.svg │ │ │ │ ├── social_share.svg │ │ │ │ ├── social_share_circle.svg │ │ │ │ ├── social_share_square.svg │ │ │ │ ├── social_skype.svg │ │ │ │ ├── social_skype_circle.svg │ │ │ │ ├── social_skype_square.svg │ │ │ │ ├── social_spotify.svg │ │ │ │ ├── social_spotify_circle.svg │ │ │ │ ├── social_spotify_square.svg │ │ │ │ ├── social_stumbleupon_circle.svg │ │ │ │ ├── social_stumbleupon_square.svg │ │ │ │ ├── social_tumbleupon.svg │ │ │ │ ├── social_tumblr.svg │ │ │ │ ├── social_tumblr_circle.svg │ │ │ │ ├── social_tumblr_square.svg │ │ │ │ ├── social_twitter.svg │ │ │ │ ├── social_twitter_circle.svg │ │ │ │ ├── social_twitter_square.svg │ │ │ │ ├── social_vimeo.svg │ │ │ │ ├── social_vimeo_circle.svg │ │ │ │ ├── social_vimeo_square.svg │ │ │ │ ├── social_wordpress.svg │ │ │ │ ├── social_wordpress_circle.svg │ │ │ │ ├── social_wordpress_square.svg │ │ │ │ ├── social_youtube.svg │ │ │ │ ├── social_youtube_circle.svg │ │ │ │ └── social_youtube_square.svg │ │ ├── jquery-3.3.1.min.js │ │ ├── jquery-match-height │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── jquery.matchHeight-min.js │ │ │ ├── jquery.matchHeight.js │ │ │ ├── matchHeight.jquery.json │ │ │ ├── test.css │ │ │ ├── test.html │ │ │ └── test.js │ │ ├── jquery-scrollTo │ │ │ ├── .gitignore │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── CHANGELOG │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── demo │ │ │ │ ├── css │ │ │ │ │ ├── style.css │ │ │ │ │ └── style.old.css │ │ │ │ ├── index.html │ │ │ │ └── index.old.html │ │ │ ├── jquery.scrollTo.js │ │ │ ├── jquery.scrollTo.min.js │ │ │ ├── package.json │ │ │ └── tests │ │ │ │ ├── ElemMaxY-compat.html │ │ │ │ ├── ElemMaxY-quirks.html │ │ │ │ ├── WinMaxY-compat.html │ │ │ │ ├── WinMaxY-quirks.html │ │ │ │ ├── WinMaxY-to-iframe-compat.html │ │ │ │ ├── WinMaxY-to-iframe-quirks.html │ │ │ │ ├── WinMaxY-with-iframe-compat.html │ │ │ │ ├── WinMaxY-with-iframe-quirks.html │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ └── prism │ │ │ ├── min │ │ │ └── prism-min.js │ │ │ ├── prism.css │ │ │ └── prism.js │ └── scss │ │ ├── _base.scss │ │ ├── _doc.scss │ │ ├── _landing.scss │ │ ├── _mixins.scss │ │ ├── config.codekit3 │ │ └── styles.scss ├── favicon.ico └── index.html ├── graphoid.gemspec ├── lib ├── graphoid.rb └── graphoid │ ├── argument.rb │ ├── config.rb │ ├── definitions │ ├── filters.rb │ ├── inputs.rb │ ├── sorter.rb │ └── types.rb │ ├── drivers │ ├── active_record.rb │ └── mongoid.rb │ ├── graphield.rb │ ├── grapho.rb │ ├── main.rb │ ├── mapper.rb │ ├── mutations │ ├── create.rb │ ├── delete.rb │ ├── processor.rb │ ├── structure.rb │ └── update.rb │ ├── operators │ ├── attribute.rb │ ├── inherited │ │ ├── belongs_to.rb │ │ ├── embeds_many.rb │ │ ├── embeds_one.rb │ │ ├── has_many.rb │ │ ├── has_one.rb │ │ └── many_to_many.rb │ └── relation.rb │ ├── queries │ ├── operation.rb │ ├── processor.rb │ └── queries.rb │ ├── scalars.rb │ └── utils.rb ├── package-lock.json └── spec ├── graphoid ├── mutations │ ├── create_many_spec.rb │ ├── create_nested_spec.rb │ ├── create_one_spec.rb │ ├── delete_many_spec.rb │ ├── delete_one_spec.rb │ ├── update_many_spec.rb │ └── update_one_spec.rb └── queries │ ├── aggregations │ └── count_spec.rb │ ├── attributes │ ├── contains_spec.rb │ ├── filter_spec.rb │ ├── graphields_spec.rb │ ├── in_spec.rb │ ├── limit_skip_spec.rb │ ├── nin_spec.rb │ ├── not_spec.rb │ ├── operators_spec.rb │ ├── regex_spec.rb │ ├── sort_spec.rb │ ├── subfilter_spec.rb │ └── types_spec.rb │ └── relations │ ├── belongs_to_spec.rb │ ├── embeds_many_spec.rb │ ├── embeds_one_spec.rb │ ├── has_and_belongs_to_many_selves_spec.rb │ ├── has_and_belongs_to_many_spec.rb │ ├── has_many_spec.rb │ ├── has_many_through_spec.rb │ ├── has_one_spec.rb │ └── has_one_through_spec.rb ├── rails_helper.rb ├── spec_helper.rb ├── tester_ar ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── cable.js │ │ │ └── channels │ │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── graphql_controller.rb │ ├── graphql │ │ ├── mutations │ │ │ └── .keep │ │ ├── tester_schema.rb │ │ └── types │ │ │ ├── .keep │ │ │ ├── base_enum.rb │ │ │ ├── base_input_object.rb │ │ │ ├── base_interface.rb │ │ │ ├── base_object.rb │ │ │ ├── base_union.rb │ │ │ ├── mutation_type.rb │ │ │ └── query_type.rb │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── account.rb │ │ ├── application_record.rb │ │ ├── brain.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── contract.rb │ │ ├── employee.rb │ │ ├── follow.rb │ │ ├── house.rb │ │ ├── label.rb │ │ ├── person.rb │ │ ├── player.rb │ │ ├── team.rb │ │ ├── unused │ │ │ └── snake.rb │ │ └── user.rb │ └── views │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── spring │ ├── update │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── graphoid.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── secrets.yml │ └── spring.rb ├── db │ ├── schema.rb │ └── seeds.rb ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep ├── log │ └── .keep ├── package.json ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ └── robots.txt ├── test │ ├── application_system_test_case.rb │ ├── controllers │ │ └── .keep │ ├── fixtures │ │ ├── .keep │ │ ├── accounts.yml │ │ ├── files │ │ │ └── .keep │ │ ├── houses.yml │ │ ├── labels.yml │ │ └── people.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── account_test.rb │ │ ├── house_test.rb │ │ ├── label_test.rb │ │ └── person_test.rb │ ├── system │ │ └── .keep │ └── test_helper.rb ├── tmp │ └── .keep └── vendor │ └── .keep └── tester_mongo ├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── application.js │ │ ├── cable.js │ │ └── channels │ │ │ └── .keep │ └── stylesheets │ │ └── application.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── graphql_controller.rb ├── graphql │ ├── mutations │ │ └── .keep │ ├── tester_mongo_schema.rb │ └── types │ │ ├── .keep │ │ ├── base_enum.rb │ │ ├── base_input_object.rb │ │ ├── base_interface.rb │ │ ├── base_object.rb │ │ ├── base_union.rb │ │ ├── mutation_type.rb │ │ └── query_type.rb ├── helpers │ └── application_helper.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── account.rb │ ├── concerns │ │ └── .keep │ ├── contract.rb │ ├── employee.rb │ ├── follow.rb │ ├── house.rb │ ├── label.rb │ ├── person.rb │ ├── snake.rb │ ├── unused │ │ ├── player.rb │ │ └── team.rb │ ├── user.rb │ └── value.rb └── views │ └── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── graphoid.rb │ ├── inflections.rb │ ├── mime_types.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── mongoid.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── spring.rb ├── db ├── schema.rb ├── seeds.rb └── test.sqlite3 ├── package.json └── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png └── favicon.ico /.gitignore: -------------------------------------------------------------------------------- 1 | .byebug_history 2 | graphoid-*.gem 3 | coverage 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | Metrics/MethodLength: 2 | Max: 40 3 | Metrics/LineLength: 4 | Max: 150 5 | Metrics/BlockLength: 6 | Max: 40 7 | Naming/PredicateName: 8 | NamePrefixBlacklist: 9 | - has_ 10 | Metrics/AbcSize: 11 | Max: 30 12 | Style/IfUnlessModifier: 13 | Enabled: false 14 | Style/Documentation: 15 | Enabled: false -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.5 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source 'https://rubygems.org' 4 | ruby '2.4.5' 5 | 6 | gemspec 7 | 8 | gem 'graphql' 9 | 10 | gem "nokogiri", ">= 1.10.4" 11 | 12 | group :development, :test do 13 | gem 'byebug' 14 | gem 'simplecov', require: false 15 | end 16 | 17 | group :test do 18 | gem 'mongoid' 19 | gem 'mongoid-rspec' 20 | gem 'rspec' 21 | gem 'rspec-rails' 22 | gem 'sqlite3' 23 | end 24 | -------------------------------------------------------------------------------- /assets/graphoid copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/assets/graphoid copy.png -------------------------------------------------------------------------------- /assets/graphoid-in-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/assets/graphoid-in-action.png -------------------------------------------------------------------------------- /assets/graphoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/assets/graphoid.png -------------------------------------------------------------------------------- /assets/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/assets/item.png -------------------------------------------------------------------------------- /assets/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/assets/person.png -------------------------------------------------------------------------------- /docs/assets/js/main.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | 3 | /* Activate scrollspy menu */ 4 | $('body').scrollspy({target: '#doc-menu', offset: 100}); 5 | 6 | /* Smooth scrolling */ 7 | $('a.scrollto').on('click', function(e){ 8 | //store hash 9 | var target = this.hash; 10 | e.preventDefault(); 11 | $('body').scrollTo(target, 800, {offset: 0, 'axis':'y'}); 12 | }); 13 | }); 14 | -------------------------------------------------------------------------------- /docs/assets/plugins/bootstrap/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.md] 14 | trim_trailing_whitespace = false 15 | 16 | [*.py] 17 | indent_size = 4 18 | -------------------------------------------------------------------------------- /docs/assets/plugins/bootstrap/.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | *.css text eol=lf 3 | *.html text eol=lf 4 | *.js text eol=lf 5 | *.json text eol=lf 6 | *.less text eol=lf 7 | *.md text eol=lf 8 | *.svg text eol=lf 9 | *.yml text eol=lf 10 | # Don't diff or textually merge source maps 11 | *.map binary 12 | 13 | bootstrap-theme.css linguist-vendored=false 14 | bootstrap.css linguist-vendored=false 15 | bootstrap.js linguist-vendored=false 16 | -------------------------------------------------------------------------------- /docs/assets/plugins/bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore docs files 2 | _gh_pages 3 | _site 4 | .ruby-version 5 | 6 | # Numerous always-ignore extensions 7 | *.diff 8 | *.err 9 | *.log 10 | *.orig 11 | *.rej 12 | *.swo 13 | *.swp 14 | *.vi 15 | *.zip 16 | *~ 17 | 18 | # OS or Editor folders 19 | ._* 20 | .cache 21 | .DS_Store 22 | .idea 23 | .project 24 | .settings 25 | .tmproj 26 | *.esproj 27 | *.sublime-project 28 | *.sublime-workspace 29 | nbproject 30 | Thumbs.db 31 | 32 | # Komodo 33 | .komodotools 34 | *.komodoproject 35 | 36 | # Jekyll metadata 37 | docs/.jekyll-metadata 38 | 39 | # Folders to ignore 40 | bower_components 41 | node_modules 42 | -------------------------------------------------------------------------------- /docs/assets/plugins/bootstrap/.hound.yml: -------------------------------------------------------------------------------- 1 | javascript: 2 | config_file: js/.jshintrc 3 | enabled: true 4 | scss: 5 | enabled: false 6 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/css/fonts/ElegantIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/css/fonts/ElegantIcons.eot -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/css/fonts/ElegantIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/css/fonts/ElegantIcons.ttf -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/css/fonts/ElegantIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/css/fonts/ElegantIcons.woff -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow-up-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow-up-down.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_back.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2dwnn_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2dwnn_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-down.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-left.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-right.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-up.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-up_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot-up_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_carrot_up_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_carrot_up_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_condense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_condense.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_condense_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_condense_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_down.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_down_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_down_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_expand.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_expand_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_expand_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_expand_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_expand_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_expand_alt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_expand_alt3.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_left-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_left-down.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_left-down_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_left-down_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_left-right.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_left-right_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_left-right_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_left-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_left-up.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_left-up_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_left-up_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_left.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_left_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_left_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_move.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_right-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_right-down.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_right-down_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_right-down_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_right-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_right-up.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_right-up_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_right-up_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_right.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_right_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_right_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-down.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-left.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-right.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-up.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_up-down_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_up-down_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_up.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/arrow_up_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/arrow_up_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_adjust-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_adjust-horiz.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_adjust-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_adjust-vert.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_archive.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_archive_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_archive_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_bag.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_bag_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_bag_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_balance.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_blocked.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_book.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_book_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_book_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_box-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_box-checked.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_box-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_box-empty.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_box-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_box-selected.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_briefcase.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_briefcase_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_briefcase_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_building.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_building_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_building_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_calculator_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_calculator_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_calendar.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_calulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_calulator.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_camera.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_camera_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_camera_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cart.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cart_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cart_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_chat.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_chat_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_chat_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_check.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_check_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_check_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_check_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_check_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_circle-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_circle-empty.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_circle-slelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_circle-slelected.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_clipboard.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_clock.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_clock_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_clock_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_close.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_close_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_close_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_close_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_close_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cloud-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cloud-download.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cloud-download_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cloud-download_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cloud-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cloud-upload.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cloud-upload_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cloud-upload_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cloud.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cloud_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cloud_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cog.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cogs.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_comment.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_comment_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_comment_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_compass.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_compass_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_compass_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cone.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cone_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cone_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_contacts.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_contacts_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_contacts_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_creditcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_creditcard.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_currency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_currency.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_currency_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_currency_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cursor.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_cursor_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_cursor_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_datareport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_datareport.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_datareport_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_datareport_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_desktop.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_dislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_dislike.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_dislike_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_dislike_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_document.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_document_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_document_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_documents.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_documents_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_documents_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_download.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_drawer.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_drawer_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_drawer_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_drive.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_drive_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_drive_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_easel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_easel.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_easel_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_easel_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_error-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_error-circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_error-circle_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_error-circle_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_error-oct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_error-oct.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_error-oct_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_error-oct_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_error-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_error-triangle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_error-triangle_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_error-triangle_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_film.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_floppy.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_floppy_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_floppy_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_flowchart.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_flowchart_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_flowchart_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_folder-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_folder-add.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_folder-add_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_folder-add_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_folder-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_folder-alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_folder-open.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_folder-open_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_folder-open_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_folder.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_folder_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_folder_download.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_folder_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_folder_upload.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_genius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_genius.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_gift.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_gift_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_gift_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_globe-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_globe-2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_globe.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_globe_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_globe_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_grid-2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_grid-2x2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_grid-3x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_grid-3x3.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_group.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_headphones.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_heart.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_heart_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_heart_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_hourglass.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_house.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_house_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_house_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_id-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_id-2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_id-2_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_id-2_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_id.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_id_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_id_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_image.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_images.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_info.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_info_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_info_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_key.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_key_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_key_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_laptop.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_lifesaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_lifesaver.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_lightbulb.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_lightbulb_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_lightbulb_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_like.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_like_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_like_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_link.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_link_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_link_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_loading.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_lock-open.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_lock-open_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_lock-open_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_lock.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_lock_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_lock_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_mail.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_mail_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_mail_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_map.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_map_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_map_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_menu.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_mic.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_mic_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_mic_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_minus-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_minus-06.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_minus-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_minus-box.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_minus_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_minus_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_minus_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_minus_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_mobile.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_mug.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_mug_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_mug_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_music.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_ol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_ol.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_paperclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_paperclip.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pause.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pause_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pause_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pause_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pause_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pencil-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pencil-edit.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pencil-edit_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pencil-edit_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pencil.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pencil_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pencil_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pens.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pens_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pens_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_percent.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_percent_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_percent_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_phone.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_piechart.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pin.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pin_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pin_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_plus-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_plus-box.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_plus.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_plus_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_plus_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_plus_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_plus_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_printer-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_printer-alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_printer.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_profile.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pushpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pushpin.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_pushpin_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_pushpin_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_puzzle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_puzzle_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_puzzle_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_question.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_question_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_question_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_question_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_question_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_quotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_quotations.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_quotations_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_quotations_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_quotations_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_quotations_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_refresh.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_ribbon.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_ribbon_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_ribbon_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_rook.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_search.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_search2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_search2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_search_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_search_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_shield.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_shield_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_shield_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_star-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_star-half.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_star-half_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_star-half_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_star.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_star_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_star_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_stop.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_stop_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_stop_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_stop_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_stop_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_table.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_tablet.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_tag.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_tag_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_tag_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_tags.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_tags_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_tags_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_target.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_tool.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_toolbox.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_toolbox_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_toolbox_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_tools.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_trash.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_trash_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_trash_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_ul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_ul.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_upload.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_vol-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_vol-mute.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_vol-mute_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_vol-mute_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_volume-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_volume-high.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_volume-high_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_volume-high_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_volume-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_volume-low.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_volume-low_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_volume-low_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_wallet.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_wallet_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_wallet_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_zoom-in.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_zoom-in_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_zoom-in_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_zoom-out.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/icon_zoom-out_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/icon_zoom-out_alt.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_blogger.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_blogger_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_blogger_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_blogger_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_blogger_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_delicious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_delicious.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_delicious_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_delicious_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_delicious_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_delicious_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_deviantart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_deviantart.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_deviantart_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_deviantart_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_deviantart_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_deviantart_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_dribbble.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_dribbble_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_dribbble_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_dribbble_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_dribbble_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_facebook.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_facebook_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_facebook_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_facebook_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_facebook_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_flickr.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_flickr_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_flickr_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_flickr_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_flickr_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_googledrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_googledrive.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_googledrive_alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_googledrive_alt2.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_googledrive_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_googledrive_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_googleplus.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_googleplus_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_googleplus_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_googleplus_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_googleplus_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_instagram.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_instagram_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_instagram_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_instagram_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_instagram_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_linkedin.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_linkedin_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_linkedin_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_linkedin_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_linkedin_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_myspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_myspace.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_myspace_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_myspace_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_myspace_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_myspace_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_picassa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_picassa.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_picassa_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_picassa_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_picassa_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_picassa_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_pinterest.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_pinterest_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_pinterest_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_pinterest_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_pinterest_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_rss.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_rss_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_rss_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_rss_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_rss_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_share.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_share_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_share_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_share_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_share_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_skype.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_skype_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_skype_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_skype_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_skype_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_spotify.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_spotify_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_spotify_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_spotify_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_spotify_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_stumbleupon_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_stumbleupon_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_stumbleupon_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_stumbleupon_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_tumbleupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_tumbleupon.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_tumblr.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_tumblr_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_tumblr_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_tumblr_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_tumblr_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_twitter.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_twitter_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_twitter_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_twitter_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_twitter_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_vimeo.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_vimeo_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_vimeo_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_vimeo_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_vimeo_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_wordpress.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_wordpress_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_wordpress_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_wordpress_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_wordpress_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_youtube.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_youtube_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_youtube_circle.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/PNG/social_youtube_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxcoto/graphoid/cde877410e8b8abaf90da639708e1112a79542e6/docs/assets/plugins/elegant_font/images/PNG/social_youtube_square.png -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/arrow_carrot-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/arrow_carrot-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/arrow_carrot-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/arrow_carrot-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_archive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_box-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_circle-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_circle-slelected.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_cloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_cone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_download.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_folder-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_folder-open_alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_folder_upload.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_mail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_minus-06.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_minus_alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_pause_alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_pencil.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_profile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_stop_alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/icon_upload.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/social_facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/social_flickr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/elegant_font/images/SVG/social_googledrive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/plugins/jquery-match-height/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # jquery.matchHeight.js Changelog 2 | 3 | [brm.io/jquery-match-height](http://brm.io/jquery-match-height/) 4 | 5 | ---------- 6 | 7 | ## 0.5.2 8 | 9 | - improved demo 10 | - added matchHeight('remove') 11 | - added update throttling 12 | - removed forced `display:block` after application 13 | 14 | ## 0.5.1 15 | 16 | - fixed IE8 NaN bug when parsing 'auto' properties 17 | - fixed IE8 window resize event loop bug 18 | - fixed compatibility with older jQuery versions 19 | - added bower package file 20 | - added jquery package file 21 | 22 | ## 0.5.0 - 2014-03-02 23 | 24 | - initial release -------------------------------------------------------------------------------- /docs/assets/plugins/jquery-scrollTo/.gitignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | node_modules 15 | npm-debug.log 16 | .DS_Store 17 | -------------------------------------------------------------------------------- /docs/assets/plugins/jquery-scrollTo/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "shadow": "inner", 3 | 4 | "camelcase": true, 5 | "eqeqeq": true, 6 | "eqnull": true, 7 | "freeze": true, 8 | "funcscope": true, 9 | "newcap": true, 10 | "noarg": true, 11 | "noempty": true, 12 | "nonbsp": true, 13 | "unused": true, 14 | "undef": true, 15 | "scripturl": true, 16 | "strict": true, 17 | "quotmark": "single", 18 | 19 | "globals": {"define": true}, 20 | "browser": true, 21 | "node": true, 22 | "jquery": true 23 | } -------------------------------------------------------------------------------- /docs/assets/plugins/jquery-scrollTo/tests/WinMaxY-with-iframe-compat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery.scrollTo - Test Window MaxY with Iframe - Compat Mode 6 | 7 | 8 |

jQuery.scrollTo - Test Window MaxY with Iframe - Compat Mode

9 | 10 |